Preferences and policies for Cast receiving Allows control of whether the Cast Receiver is enabled or not, and what it is named. Policies allow the administrators to force these preferences. Bug: 749436 Test: browser_tests Change-Id: Ia4f200a7ae3269258b10f5545d812c90de30ca3c Reviewed-on: https://chromium-review.googlesource.com/590490 Commit-Queue: Yves Arrouye <drcrash@chromium.org> Reviewed-by: James Cook <jamescook@chromium.org> Reviewed-by: Julian Pastarmov <pastarmovj@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#491460} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 454e1e57d1a9628430b705d49872ff2b38877d3b
diff --git a/chrome_device_policy.proto b/chrome_device_policy.proto index 79c14c4..4ebc720 100644 --- a/chrome_device_policy.proto +++ b/chrome_device_policy.proto 
@@ -813,6 +813,13 @@  optional U2fMode mode = 1;  }   +message CastReceiverNameProto { + // The name advertised as a Google Cast destination by the device, + // up to 24 characters. If the name is empty, the device name will + // be used. + optional string name = 1; +} +  message ChromeDeviceSettingsProto {  optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;  optional UserWhitelistProto user_whitelist = 2; @@ -875,4 +882,5 @@  device_ecryptfs_migration_strategy = 51;  optional DeviceSecondFactorAuthenticationProto  device_second_factor_authentication = 52; + optional CastReceiverNameProto cast_receiver_name = 53;  }